home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / date / adpedit0.int < prev    next >
Text File  |  1996-04-08  |  891b  |  43 lines

  1. {$G+,X+,F+}
  2.  
  3. {Conditional defines that may affect this unit}
  4. {$I AWDEFINE.INC}
  5.  
  6. {*********************************************************}
  7. {*                  ADPEDIT0.PAS 1.01                    *}
  8. {*        Copyright (c) TurboPower Software 1995         *}
  9. {*                 All rights reserved.                  *}
  10. {*********************************************************}
  11.  
  12. unit AdPEdit0;
  13.  
  14. interface
  15.  
  16. uses
  17.   {!!.01 modified}
  18.   WinTypes,
  19.   WinProcs,
  20.   SysUtils,
  21.   Messages,
  22.   Classes,
  23.   Graphics,
  24.   Controls,
  25.   Forms,
  26.   Dialogs,
  27.   StdCtrls;
  28.  
  29. type
  30.   TAdPEdit = class(TForm)
  31.     BaudChoices : TComboBox;
  32.     OK          : TButton;
  33.     Cancel      : TButton;
  34.     Help        : TButton;
  35.     procedure OKClick(Sender: TObject);
  36.     procedure CancelClick(Sender: TObject);
  37.     procedure HelpClick(Sender: TObject);
  38.   end;
  39.  
  40. var
  41.   AdPEdit: TAdPEdit;
  42.  
  43.